is-empty
Check whether a value is empty.
Installation
$ npm install is-empty
$ npm test
Example
var empty = require('is-empty');
empty([]);
empty({});
empty('');
empty(0);
empty(function(){});
empty(null);
empty(undefined);
empty(new Map());
empty(new Set());
empty(new Error());
empty(true);
empty(false);
empty(['a', 'b']);
empty({ a: 'b' });
empty('string');
empty(42);
empty(function(a,b){});
empty(new Map([['key', 'value']]));
empty(new Set([1]));
empty(new Error('fail'))
API
isEmpty(value)
Check whether value
is empty.
License
MIT